home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / lord2b6.zip / 3RDPARTY.BAK next >
Text File  |  1997-04-23  |  5KB  |  123 lines

  1.  
  2.               THIRD PARTY DOCUMENTATION FOR THE LORD2 ENGINE
  3.  
  4. This is some extra info and help on creating addons/new areas/stand alone
  5. .refs/new worlds for the LORD2 engine.
  6.  
  7. My goal is to make it easy and free (besides our cheap $15 registration
  8. fee) for any non programmer to make his own door or world.
  9.  
  10. ** The pascal structures of most data files are listed at the end of this **
  11. ** file.                                                                  **
  12.  
  13. Q:  How do I start adding screens from a clear map?
  14.  
  15. A:  Delete the files WORLD.DAT and MAP.DAT.
  16.  
  17. Q:  If I make my own world, what do I need to distribute it?
  18.  
  19. A: MAP.DAT, WORLD.DAT and all your .REF files.  Probably a good idea to
  20.    also throw in a file_id.diz and a .doc file of some sort.
  21.  
  22.    To install it, a person should setup a NEW game of LORD2 somewhere, then
  23.    copy your files over it.  Otherwise it would destroy the real LORD2 game
  24.    they were running.  Be sure to make this clear in your documentation.
  25.  
  26.    Do *NOT* distirbute the GAME.DAT file.  This is where non game
  27.    information is held like their registration info (they probably don't
  28.    want this overwritten!) and ticks per second, etc.
  29.  
  30. Q: You made LORD2 and my game needs it to run - does this mean I cannot
  31.    charge people for it?
  32.  
  33. A: Charge away, I don't want any royalities, you might thank me in your
  34.    docs though. ;>  Since there is no way to compile or protect your work,
  35.    I doubt many will charge for addons which is fine by me.
  36.  
  37.    A situation that would make charging feasible is say, if you have one
  38.    full world addon, and for $5 you would send them two more.  This worked
  39.    with new LORD ansi packs for a few people, and so much more than new
  40.    ANSI can be done now.
  41.  
  42. Q: I'm editting some stuff in LORD2 - How do I know what vars you used for
  43.    what?
  44.  
  45. A: Check the GAMETXT.REF file - at the top I list every var I am using and
  46.    tell you what it is for.  Any addon you make should contain a list like
  47.    this somewhere.
  48.  
  49. Q: I made my own game using your system - but it says LORDII: New World at
  50.    the bottom of the screen!! How tacky!
  51.  
  52. A: You can change this.  As well as the default <more> prompt.  Check
  53.    REFHELP.DOC to learn about the @PROGNAME and @MOREMAP commands.
  54.  
  55. Q: How on earth could I make an ADDON for LORD2, something they plug into
  56.    their current game like an IGM?
  57.  
  58. A: This would be very difficult.  I suspect entirely new worlds/games will
  59.    be more popular, and easier to install.
  60.  
  61.    One possibility is make a .REF file that does not change any vars
  62.    except ones marked 'temp vars for math' and saves to DISK anything it
  63.    needs - Then telling the SYSOP that *HE* needs to make a building and
  64.    hotspot and add it to the map manually.
  65.  
  66.    But it would be ugly.. So hacking two worlds up to make one is for pros
  67.    only.
  68.  
  69. Q: Do I have to use your realtime movement/messaging system?
  70.  
  71. A: No.  Download my addon BRADYREF.ZIP from my website and check it out - it
  72.    demonstrates how you can run a single .REF file for the game instead of
  73.    using the full on system.  For .REF's like these, it is possible to run
  74.    them FROM the LORD2 dir, and not disrupt LORD2's real data files, in
  75.    case the sysop also has a LORD2 game running their.
  76.  
  77.    It looks like this:  LORD2 crap+crap.ref <other parms here>.  This is
  78.    good for testing specific .ref files also.  "crap" is the label to
  79.    run, and "crap.ref" is the filename.
  80.  
  81.    When LORD2 is run this way, it behaves a little differently - for one, it
  82.    quits the game as soon as the .ref is done.  Also, you cannot use the
  83.    built in load/save player data.
  84.  
  85.    If you NEEDED this, but didn't want to use the mapping system at all, you
  86.    still can.  You would edit the @#STARTGAME function to start your main
  87.    .REF game, then do a @halt to stop the game before it moves on to the
  88.    mapping system.
  89.  
  90. -= Summary =-
  91.  
  92. In any case - *IF* you are using the mapping engine in your game, be sure
  93. to tell the user in the docs if a registered LORD2 is required so they
  94. don't think your .ref is buggy if things go wrong.
  95.  
  96. They need a registered LORD2 if:
  97.  
  98.  * You use maps that are not in the unregistered area.  This kinda tricky -
  99.    but basically all the maps you can access in the very first part of the
  100.    game up to until you pass Neb are part of the unregistered area.
  101.  
  102.  * You use more than 20 items in the items system.  If they pickup/buy an
  103.    item pass 20, it will show up as blank, and will not be useable.
  104.  
  105. Please send your finishes addons/games over to me to check out, I'll put the
  106. best ones/ones that work on my web page for download!
  107.  
  108. Just email attach them mime or uue to sethable@rtsoft.com.
  109.  
  110. If you have questions and need help with .REF's please feel free to email
  111. me for help and suggestions, but even in LORD2's beta form I am getting
  112. .REF's sent to me every day to diagnose problems and such and I can see
  113. I won't be able to do this for everyone... <G>
  114.  
  115. But I'll do what I can!
  116.  
  117. Also:  I'll probably have LORD2 ref/world download area on my website soon,
  118. as well as a developers area.  So hit www.rtsoft.com once in a while to
  119. see what is new there!
  120.  
  121. -Seth (sethable@rtsoft.com)
  122.  
  123.